home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel PPC / lib_show / bench2 / array_bench2.e next >
Encoding:
Text File  |  1996-06-13  |  298 b   |  21 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class ARRAY_BENCH2
  5.  
  6. inherit BENCH2;
  7.  
  8. creation make
  9.  
  10. feature
  11.  
  12.    cltn: ARRAY[INTEGER];
  13.  
  14.    make is
  15.       do
  16.      !!cltn.make(0,upper);
  17.      bench;
  18.       end;
  19.  
  20. end -- ARRAY_BENCH2
  21.